https://github.com/azamjonbro/codewars
https://github.com/azamjonbro/codewars
codewars codewars-kata codewars-kata-solution
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/azamjonbro/codewars
- Owner: azamjonbro
- Created: 2025-05-05T19:29:32.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-06-19T09:36:03.000Z (9 months ago)
- Last Synced: 2025-07-03T00:10:05.629Z (8 months ago)
- Topics: codewars, codewars-kata, codewars-kata-solution
- Language: JavaScript
- Homepage:
- Size: 8.79 KB
- Stars: 21
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Codewars
# 19-06-2025 yil shu kuni jamoa bilan muzokarada ishlangan masalada 9 daqiqada qilgan solutionim
["Masala sharti shundan iboratki: x2 - 2y2=1 shu masalada x2 va 2y2 ni ildizini aniqlash va to'g'ri javobni aniqlash."]
```
function butunson(limit){
let javoblar = []
for(let x = -limit; x<=limit;x++ ){
for(let y = -limit ; y<=limit;y ++){
if(x*x-2*y*y===1){
javoblar.push({x,y})
}
}
}
console.log(javoblar)
}
```