This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Privacy Policy | |
Radio Munnabuddu USA built the Radio Munnabuddu USA app as a Free app. This SERVICE is provided by Radio Munnabuddu USA at no cost and is intended for use as is. | |
This page is used to inform visitors regarding our policies with the collection, use, and disclosure of Personal Information if anyone decided to use our Service. | |
If you choose to use our Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that we collect is used for providing and improving the Service. We will not use or share your information with anyone except as described in this Privacy Policy. | |
The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Radio Munnabuddu USA unless otherwise defined in this Privacy Policy. | |
Information Collection and Use |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
android.app.RemoteServiceException: | |
at android.app.ActivityThread$H.handleMessage (ActivityThread.java:1871) | |
at android.os.Handler.dispatchMessage (Handler.java:106) | |
at android.os.Looper.loop (Looper.java:214) | |
at android.app.ActivityThread.main (ActivityThread.java:7032) | |
at java.lang.reflect.Method.invoke (Native Method) | |
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run (RuntimeInit.java:494) | |
at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:965) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This is the easiest method | |
Hope it helps | |
*/ | |
function compareTriplets(a, b) { | |
let aliceScore = 0 | |
let bobScore = 0 | |
let result = [0, 0] | |
for (let i = 0; i<a.length; i++){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function diagonalDifference(arr) { | |
let left_diagonal = 0 | |
let right_diagonal = 0 | |
let total = 0 | |
for (let i = 0; i < arr.length; i++){ | |
left_diagonal += arr[i][i] | |
right_diagonal += arr[arr.length - 1 - i][i] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function stairCase(n){ | |
let arr = Array(n-1).fill(' ') | |
for (let i = n-1; i >= 0; i--) { | |
arr[i] = '#'; | |
console.log(arr.join('')); | |
} | |
} | |
stairCase(6) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function palindromeCheck(){ | |
let word = prompt("Write a word:") | |
let collection = [] | |
//adding letters from word to collection | |
for(let i = 0; i < word.length; i++ ){ | |
collection.push(word[i]); | |
} | |
this.front = function(){ | |
return collection[0] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
selector:pseudo-class { | |
property:value; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<h1>Top 5 Languages </h1> | |
<p>In the last year, developers collaborated in more than 370 primary languages on GitHub. The following are the the top five languages with more contributions on GitHub</p> | |
<div class="list"> | |
<ul> | |
<li class="list-item"> <a href="#"> Javascript </a> </li> | |
<li class="list-item"> <a href="#"> Python </a> </li> | |
<li class="list-item"> <a href="#"> Java </a> </li> | |
<li class="list-item"> <a href="#"> PHP </a> </li> | |
<li class="list-item"> <a href="#"> C# </a> </li> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.list-item:hover { | |
background-color: aliceblue; | |
} | |
.list a:link{ | |
color: black; | |
} | |
.list a:active{ | |
color: green; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.list-item:nth-child(2n-1){ | |
background-color: slategrey; | |
} |
OlderNewer