또 다른 실패
require 'net/http'
require 'json'
start_url = "https://url-to-json.feed"
posts = []
loop do
body = JSON.parse(Net::HTTP.get(URI(start_url)))
next_page = body["paging"]["next"]
body["data"].each do |new_post|
id_exists = posts.detect {|post| post["id"] == new_post["id"] }
unless id_exists
posts << new_post
end
end
url = next_page
if posts.count > 199
break
end
end
멍청하고 단순한 15줄의 코드 대신 함수를 만들고, 서로 연결하고, 헛소리 추상화를 하고, 마침내 엉망이 되었습니다.
Reference
이 문제에 관하여(또 다른 실패), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/marmeladze/mental-paralysis-in-an-interview-again-19h4텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)