René's URL Explorer Experiment


Title: GitHub · Where software is built

Open Graph Title: feikerwu/algorithm-camp

X Title: feikerwu/algorithm-camp

Description: 算法训练. Contribute to feikerwu/algorithm-camp development by creating an account on GitHub.

Open Graph Description: 算法训练. Contribute to feikerwu/algorithm-camp development by creating an account on GitHub.

X Description: 算法训练. Contribute to feikerwu/algorithm-camp development by creating an account on GitHub.

Opengraph URL: https://github.com/feikerwu/algorithm-camp

X: @github

direct link

Domain: patch-diff.githubusercontent.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"67.二进制求和","articleBody":"[原题地址: 67. 二进制求和](https://leetcode-cn.com/problems/add-binary/)\r\n\r\n#### 解法\r\n模拟算盘加法,逐位相加即可\r\n\r\n#### 代码\r\n```js\r\n/**\r\n * @param {string} a\r\n * @param {string} b\r\n * @return {string}\r\n */\r\nvar addBinary = function(a, b) {\r\n  // 字符串翻转\r\n  a = a.split('').reverse().join('')\r\n  b = b.split('').reverse().join('')\r\n\r\n  // 保证a的长度大于b的长度\r\n  if (a.length \u003c b.length) {\r\n    [a, b] = [b, a]\r\n  }\r\n\r\n  let res = ''\r\n  let carry = 0 // 进位\r\n\r\n  // 模拟逐位加法\r\n  for(let i = 0; i \u003c a.length; i++) {\r\n    let term = parseInt(a[i]) + parseInt(b[i] || 0) + carry\r\n    carry = parseInt(term / 2)\r\n    term = term % 2\r\n    res = `${term}${res}`\r\n  }\r\n\r\n  // 如果最后计算完还有进位的边界处理\r\n  if (carry \u003e 0) {\r\n    res = `${carry}${res}`\r\n  }\r\n\r\n  return res;\r\n};\r\n```","author":{"url":"https://github.com/feikerwu","@type":"Person","name":"feikerwu"},"datePublished":"2020-02-25T09:43:38.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/1/algorithm-camp/issues/1"}

route-pattern/:user_id/:repository/issues/:id(.:format)
route-controllerissues
route-actionshow
fetch-noncev2:7fb44054-b9ba-36c9-97a7-482977b969e5
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id80C4:151D01:BAACF5:FD02EA:69795D0B
html-safe-nonce9dcf8ce2ddfdd34fbe37c622d28245bf18af23914ab423cf09ac453f7adf4999
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4MEM0OjE1MUQwMTpCQUFDRjU6RkQwMkVBOjY5Nzk1RDBCIiwidmlzaXRvcl9pZCI6IjYwMzgwMzM3NTg1NzE1NTIwMTEiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac2ea7f57802a7d14541af7f5c5901bd7ba74e4700cdacb3bd9e34959fb728f275
hovercard-subject-tagrepository:242958294
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///issues/show
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/feikerwu/algorithm-camp/issues/1
twitter:imagehttps://opengraph.githubassets.com/7c5c7b83ad85ad8d251b456aaffd01bf247be4ec708dd80d3e7358c3c24f7a6a/feikerwu/algorithm-camp
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/7c5c7b83ad85ad8d251b456aaffd01bf247be4ec708dd80d3e7358c3c24f7a6a/feikerwu/algorithm-camp
og:image:alt算法训练. Contribute to feikerwu/algorithm-camp development by creating an account on GitHub.
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None9a8bf5f945fd86e846085fae394d6ac589cd2b86e05b57ef553a6b80c16b1a62
turbo-cache-controlno-cache
go-importgithub.com/feikerwu/algorithm-camp git https://github.com/feikerwu/algorithm-camp.git
octolytics-dimension-user_id39146693
octolytics-dimension-user_loginfeikerwu
octolytics-dimension-repository_id242958294
octolytics-dimension-repository_nwofeikerwu/algorithm-camp
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id242958294
octolytics-dimension-repository_network_root_nwofeikerwu/algorithm-camp
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release9288b06021ef9d084f8b8be8a0cb129d8dc9b93a
ui-targetcanary-1
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/feikerwu/algorithm-camp/issues/1#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Ffeikerwu%2Falgorithm-camp%2Fissues%2F1
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Ffeikerwu%2Falgorithm-camp%2Fissues%2F1
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fissues%2Fshow&source=header-repo&source_repo=feikerwu%2Falgorithm-camp
Reloadhttps://patch-diff.githubusercontent.com/feikerwu/algorithm-camp/issues/1
Reloadhttps://patch-diff.githubusercontent.com/feikerwu/algorithm-camp/issues/1
Reloadhttps://patch-diff.githubusercontent.com/feikerwu/algorithm-camp/issues/1
feikerwu https://patch-diff.githubusercontent.com/feikerwu
algorithm-camphttps://patch-diff.githubusercontent.com/feikerwu/algorithm-camp
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Ffeikerwu%2Falgorithm-camp
Fork 0 https://patch-diff.githubusercontent.com/login?return_to=%2Ffeikerwu%2Falgorithm-camp
Star 3 https://patch-diff.githubusercontent.com/login?return_to=%2Ffeikerwu%2Falgorithm-camp
Code https://patch-diff.githubusercontent.com/feikerwu/algorithm-camp
Issues 11 https://patch-diff.githubusercontent.com/feikerwu/algorithm-camp/issues
Pull requests 3 https://patch-diff.githubusercontent.com/feikerwu/algorithm-camp/pulls
Actions https://patch-diff.githubusercontent.com/feikerwu/algorithm-camp/actions
Projects 0 https://patch-diff.githubusercontent.com/feikerwu/algorithm-camp/projects
Security 0 https://patch-diff.githubusercontent.com/feikerwu/algorithm-camp/security
Insights https://patch-diff.githubusercontent.com/feikerwu/algorithm-camp/pulse
Code https://patch-diff.githubusercontent.com/feikerwu/algorithm-camp
Issues https://patch-diff.githubusercontent.com/feikerwu/algorithm-camp/issues
Pull requests https://patch-diff.githubusercontent.com/feikerwu/algorithm-camp/pulls
Actions https://patch-diff.githubusercontent.com/feikerwu/algorithm-camp/actions
Projects https://patch-diff.githubusercontent.com/feikerwu/algorithm-camp/projects
Security https://patch-diff.githubusercontent.com/feikerwu/algorithm-camp/security
Insights https://patch-diff.githubusercontent.com/feikerwu/algorithm-camp/pulse
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/feikerwu/algorithm-camp/issues/1
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/feikerwu/algorithm-camp/issues/1
67.二进制求和https://patch-diff.githubusercontent.com/feikerwu/algorithm-camp/issues/1#top
leetcodehttps://github.com/feikerwu/algorithm-camp/issues?q=state%3Aopen%20label%3A%22leetcode%22
https://github.com/feikerwu
https://github.com/feikerwu
feikerwuhttps://github.com/feikerwu
on Feb 25, 2020https://github.com/feikerwu/algorithm-camp/issues/1#issue-570438162
原题地址: 67. 二进制求和https://leetcode-cn.com/problems/add-binary/
leetcodehttps://github.com/feikerwu/algorithm-camp/issues?q=state%3Aopen%20label%3A%22leetcode%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.