From 83c1bfceb1b681b4bb7253b47491be2d8b2014a1 Mon Sep 17 00:00:00 2001
From: debashisdeb
Date: Fri, 20 Jun 2014 15:42:42 +0530
Subject: removing problem statements
---
_Programming_With_C/chapter1.ipynb | 121 +++++++++++++++++++------------------
1 file changed, 61 insertions(+), 60 deletions(-)
(limited to '_Programming_With_C/chapter1.ipynb')
diff --git a/_Programming_With_C/chapter1.ipynb b/_Programming_With_C/chapter1.ipynb
index 599cad41..c1eb1997 100644
--- a/_Programming_With_C/chapter1.ipynb
+++ b/_Programming_With_C/chapter1.ipynb
@@ -1,61 +1,62 @@
-{
- "metadata": {
- "name": ""
- },
- "nbformat": 3,
- "nbformat_minor": 0,
- "worksheets": [
- {
- "cells": [
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "
Chapter 1: Introductory Concepts "
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "Example 1.6, Page number: 1.19"
- ]
- },
- {
- "cell_type": "code",
- "collapsed": false,
- "input": [
- "# Area of a Circle\n",
- "\n",
- "import math\n",
- "\n",
- "radius=5\n",
- "area=math.pi*radius*radius\n",
- "print \"Area = \",area\n"
- ],
- "language": "python",
- "metadata": {},
- "outputs": [
- {
- "output_type": "stream",
- "stream": "stdout",
- "text": [
- "Area = 78.5398163397\n"
- ]
- }
- ],
- "prompt_number": 1
- },
- {
- "cell_type": "code",
- "collapsed": false,
- "input": [],
- "language": "python",
- "metadata": {},
- "outputs": []
- }
- ],
- "metadata": {}
- }
- ]
+{
+ "metadata": {
+ "name": "",
+ "signature": "sha256:be853ba23904264307d7e754c6f226daff90dc0e3bd2eca38f5b65419e2b80bc"
+ },
+ "nbformat": 3,
+ "nbformat_minor": 0,
+ "worksheets": [
+ {
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Chapter 1: Introductory Concepts "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Example 1.6, Page number: 1.19"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "collapsed": false,
+ "input": [
+ "\n",
+ "\n",
+ "import math\n",
+ "\n",
+ "radius=5\n",
+ "area=math.pi*radius*radius\n",
+ "print \"Area = \",area\n"
+ ],
+ "language": "python",
+ "metadata": {},
+ "outputs": [
+ {
+ "output_type": "stream",
+ "stream": "stdout",
+ "text": [
+ "Area = 78.5398163397\n"
+ ]
+ }
+ ],
+ "prompt_number": 1
+ },
+ {
+ "cell_type": "code",
+ "collapsed": false,
+ "input": [],
+ "language": "python",
+ "metadata": {},
+ "outputs": []
+ }
+ ],
+ "metadata": {}
+ }
+ ]
}
\ No newline at end of file
--
cgit