I have written an app called Hundred. The app has a grid of 3 by 3. Some numbers in the grid are given. You have to fill the rest of the numbers with the condition that sum of each row and sum of each column is 100. I have written the same using HTML and java script now. Here is the source code of the same. HTML <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> .grid-container { width:auto; display: grid; grid-row-gap:2px; grid-column-gap:2px; grid-template-columns: 80px 80px 80px ; padding: 10px; } .grid-item { background-color: rgba(255, 255, 255, 0.8); border: 1px solid rgba(0, 0, 0, 0.8); padding: 20px; font-size: 22px; text-align: center; } </style> <script type="text/javascript" src="shataka.js"></script> </head> <body> <h1>Shataka - A <i>numbe