Skip to content

Instantly share code, notes, and snippets.

View Kawaritapas's full-sized avatar
🖥️
Focusing

Tapas Kawari Kawaritapas

🖥️
Focusing
View GitHub Profile
@Kawaritapas
Kawaritapas / gist:facb564c2b69b2cd025f6958924dbeca
Last active March 9, 2021 15:12
Coding challenge submission
1st challenge solution:--
function target(nums, target) {
let result = [];
for(let i=0;i<nums.length;i++){
for(let j=i+1;j<nums.length;j++){
if(nums[i]+nums[j]==target){
result.push(i,j)
}
}
Submission links:-
Leetcode challenge code link -
https://github.com/Kawaritapas/leetcode-challenge/blob/main/README.md
Github Link for the project and readme-
https://github.com/Kawaritapas/onboard-1
I attempted these bonus points -