User Portlet
| Discussions |
|---|
| Daily Challenge (Day 17): Post a link to a fun web app/microsite you created with CloudDeploy or CloudPublish and also include the code you used to create it. The first offering of the Daily Study Group ends today. Hope you enjoyed it as much as... |
| Try this route: a = 4; Speak["Height of the column is " ToString[a]] |
| No, a pangram would be a word that uses ONLY the letters from the given set - BUT could use a letter more than once. So for the letters, {"a", "o", "l", "r", "w", "f", "m"}, "flamethrower" would not be considered the pangram. |
| Additional resources for days 4 and 5: - [https://reference.wolfram.com/language/guide/HandlingArraysOfData.html][1] - [https://reference.wolfram.com/language/tutorial/Lists.html][2] -... |
| Thanks for sharing @rohitnamjoshi. That's very helpful. |
| The passing grade for the exercise is 70%, so you should get at least 14 of the 20 correct. |
| #War and Peace Apparently "Peace" is not as talked about (or written about) as "War"... WordFrequencyPlot[{"war", "peace"}] ![enter image description here][1] #Earth and Space Or perhaps running out of options for peace on earth, space... |
| Here is a List: myList = {{a, b, c}, {d, e, f}, {g, h, i}} To access the 3rd element of the 2nd row, i.e. [2,3]: myList[[2,3]] More details can be found in the doucmentation at... |