Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions C++/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,7 @@
| Program-07 | Program to print Pascal' triangle |
| Program-08 | Program to reverse a string |
| Program-09 | Program to check if two numbers are equal without using arithmetic operators or comparison operators.

| Program-10 | Program to Reverse words in a given string

| Program-10 | Program to find the missing number in a Sorted Array.
| Program-15 | Program to find modular exponentiation.

| Program-19| To check whether a number is in palindrome or not
| Program-19| To check whether a number is in palindrome or not
1 change: 1 addition & 0 deletions Dart/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Dart
14 changes: 14 additions & 0 deletions Javascript/program-11/program.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
const isIsogram = str => {
str = str.toLowerCase();
for (let i=0 ; str.length > i ; i++){
for(let j=1+i ; str.length > j ; j++ ){
if ( str[i]==str[j] ){
return false;
}
}
}
return true;
}

//isIsogram('isogram'); // true
//isIsogram('isIsogram'); // false
11 changes: 11 additions & 0 deletions Javascript/program-11/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
title: isIsogram
tags: string,begginer
---

Checks if a given word is an isogram or not. An isogram is a word that has no repeating letters.

- Convert string to `lowercase`/`uppercase` since capital letters do not equate to small letter.
- Iterate the string using 2 for loops using the iterators `i` and `j`. Where `j` starts of 1 more than `i`.
- If at any point `str[i]` is equal to `str[j]` return `false`.
- If the above does not happen till you reach the end of the string return `true`.
3 changes: 1 addition & 2 deletions Python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
| Program-24 | Program to convert binary number to decimal |
| Program-25 | Program of a car game which shows if the car has started or stopped |
| Program-26 | Program of a guessing game in which u guess the secret number with a guessing limit of 3 attempts. |
| Program-27 | Program which tells you the of downpayment of the house is 10% or 20%
depending if the owner has a good credit or not.The price of the house is to be entered in the output |
| Program-27 | Program which tells you the of downpayment of the house is 10% or 20% depending if the owner has a good credit or not.The price of the house is to be entered in the output |
| Program-28 | Program to find out the GCD of any 2 given numbers |
| Program-29 | Program which will display the fibonacci series |
| Program-30 | Program to make simple calculator |
Expand Down
1 change: 1 addition & 0 deletions kotlin/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Kotlin