From dbf6fc314acb245d6cb83421efbd907d4f198477 Mon Sep 17 00:00:00 2001 From: Hanan Mohamed <36165902+7anann@users.noreply.github.com> Date: Fri, 28 Feb 2020 19:44:03 +0200 Subject: [PATCH 01/34] added summation series class - 20170375 --- src/SummationSeries.java | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/SummationSeries.java diff --git a/src/SummationSeries.java b/src/SummationSeries.java new file mode 100644 index 0000000..7a2c38f --- /dev/null +++ b/src/SummationSeries.java @@ -0,0 +1,26 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package main; + +import java.util.Scanner; + +/** + * + * @author egypt2 + */ +public class SummationSeries implements ISubscriber{ + @Override + public void notifySubscriber(String input) { + // TODO Auto-generated method stub + int n = Integer.parseInt(input); + System.out.println("Hello, I am really a simple summation series and I am notified with " + input); + + int result = 0; + result = n*(n+1)/2; + System.out.println("The sum of series is " + result); + } + +} \ No newline at end of file From 8cc7c9c711718eae23fba201a6f159b21eed081c Mon Sep 17 00:00:00 2001 From: Hanan Mohamed <36165902+7anann@users.noreply.github.com> Date: Fri, 28 Feb 2020 19:55:45 +0200 Subject: [PATCH 02/34] summation series added to main class --- src/Main.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Main.java b/src/Main.java index 9b8c2b0..dc268f4 100644 --- a/src/Main.java +++ b/src/Main.java @@ -2,8 +2,9 @@ public class Main { private static ISubscriber subscribers [] = { - new SimpleSubscriber(), - new ReallySimpleSubscriber(), + new SummationSeries(), + //new SimpleSubscriber(), + ///new ReallySimpleSubscriber(), }; public static void main(String[] args) { Topic mathTopic = new Topic(); From 60aa7c7e88a875f69f6387ef99811cf5af79791f Mon Sep 17 00:00:00 2001 From: unknown Date: Sat, 29 Feb 2020 18:13:29 +0200 Subject: [PATCH 03/34] class LucasSeries 20170158 --- src/LucasSeries.java | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 src/LucasSeries.java diff --git a/src/LucasSeries.java b/src/LucasSeries.java new file mode 100644 index 0000000..bb83e69 --- /dev/null +++ b/src/LucasSeries.java @@ -0,0 +1,40 @@ + +package main; +public class LucasSeries implements ISubscriber { + + @Override + public void notifySubscriber(String input) { + int Lenght = Integer.parseInt(input); + System.out.println("Hello, I am really a simple Lucas series and I am notified with " + input); + int []Series_numbers = new int[Lenght]; + switch (Lenght) { + case 1: + System.out.println("The Lucas Series is: 2"); + break; + case 2: + System.out.println("The Lucas Series is: 2,1"); + break; + default: + int F_Number = 2; + int S_Number = 1; + int Temp = 0; + Series_numbers[0] = 2; + Series_numbers[1] = 1; + for(int i = 2; i < Lenght; i++){ + Temp = F_Number + S_Number; + Series_numbers[i] = Temp; + F_Number = S_Number; + S_Number = Temp; + } + System.out.print("The Lucas Series is: "); + for(int i = 0; i < Lenght; i++){ + if (i < Lenght - 1) + System.out.print(Series_numbers[i]+","); + else + System.out.println(Series_numbers[i]); + } + break; + } + } + +} From a7d91e70243cabd8fa8c7503e2955f9a3a1f0189 Mon Sep 17 00:00:00 2001 From: unknown Date: Sat, 29 Feb 2020 18:16:43 +0200 Subject: [PATCH 04/34] LucasSeries added to main 20170158 --- src/Main.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Main.java b/src/Main.java index 9b8c2b0..f839703 100644 --- a/src/Main.java +++ b/src/Main.java @@ -2,8 +2,8 @@ public class Main { private static ISubscriber subscribers [] = { - new SimpleSubscriber(), - new ReallySimpleSubscriber(), + new LucasSeries(), + }; public static void main(String[] args) { Topic mathTopic = new Topic(); From e88e73cd160dc1bf17f01da9d815d3c6e55c0c2e Mon Sep 17 00:00:00 2001 From: mina emad <36317499+minaemad13@users.noreply.github.com> Date: Sun, 1 Mar 2020 16:08:24 +0200 Subject: [PATCH 05/34] Add files via upload --- src/SphereCircumference.java | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/SphereCircumference.java diff --git a/src/SphereCircumference.java b/src/SphereCircumference.java new file mode 100644 index 0000000..1dd386f --- /dev/null +++ b/src/SphereCircumference.java @@ -0,0 +1,8 @@ + +public class SphereCircumference extends ThreadSubscriber implements ObserverTest { + + public void notifySubscriber(String input) { + double R = Double.parseDouble(input); + System.out.println("Sphere Circumference is = " + (2*3.14*R)); + +} From 4bca125bffb6e2d868a393b675500604f8374a19 Mon Sep 17 00:00:00 2001 From: mina emad <36317499+minaemad13@users.noreply.github.com> Date: Sun, 1 Mar 2020 16:09:43 +0200 Subject: [PATCH 06/34] Update Main.java --- src/Main.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Main.java b/src/Main.java index 9b8c2b0..27a3e80 100644 --- a/src/Main.java +++ b/src/Main.java @@ -4,6 +4,7 @@ public class Main { private static ISubscriber subscribers [] = { new SimpleSubscriber(), new ReallySimpleSubscriber(), + new SphereCircumference(), }; public static void main(String[] args) { Topic mathTopic = new Topic(); From 29c1c0d4a9cd9b46a45857d712c860640f7aa7fd Mon Sep 17 00:00:00 2001 From: mina emad <36317499+minaemad13@users.noreply.github.com> Date: Sun, 1 Mar 2020 16:11:18 +0200 Subject: [PATCH 07/34] Update SphereCircumference.java --- src/SphereCircumference.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SphereCircumference.java b/src/SphereCircumference.java index 1dd386f..a214a9a 100644 --- a/src/SphereCircumference.java +++ b/src/SphereCircumference.java @@ -1,5 +1,5 @@ -public class SphereCircumference extends ThreadSubscriber implements ObserverTest { +public class SphereCircumference implements ISubscriber { public void notifySubscriber(String input) { double R = Double.parseDouble(input); From 6acf648700b7221e91b11b51633f93acd1b47ed2 Mon Sep 17 00:00:00 2001 From: mina emad <36317499+minaemad13@users.noreply.github.com> Date: Sun, 1 Mar 2020 16:13:18 +0200 Subject: [PATCH 08/34] Add files via upload --- src/SphereCircumference.java | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/SphereCircumference.java diff --git a/src/SphereCircumference.java b/src/SphereCircumference.java new file mode 100644 index 0000000..1dd386f --- /dev/null +++ b/src/SphereCircumference.java @@ -0,0 +1,8 @@ + +public class SphereCircumference extends ThreadSubscriber implements ObserverTest { + + public void notifySubscriber(String input) { + double R = Double.parseDouble(input); + System.out.println("Sphere Circumference is = " + (2*3.14*R)); + +} From 49e632f29b919f392cf919eeec0fd4d825a5e7d7 Mon Sep 17 00:00:00 2001 From: mina emad <36317499+minaemad13@users.noreply.github.com> Date: Sun, 1 Mar 2020 16:15:34 +0200 Subject: [PATCH 09/34] Update SphereCircumference.java --- src/SphereCircumference.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SphereCircumference.java b/src/SphereCircumference.java index 1dd386f..8586e2d 100644 --- a/src/SphereCircumference.java +++ b/src/SphereCircumference.java @@ -1,5 +1,5 @@ -public class SphereCircumference extends ThreadSubscriber implements ObserverTest { +public class SphereCircumference implements ISubscriber { public void notifySubscriber(String input) { double R = Double.parseDouble(input); From 4d159441a8ede465c01c1c7a8a04970233eb1805 Mon Sep 17 00:00:00 2001 From: mina emad <36317499+minaemad13@users.noreply.github.com> Date: Sun, 1 Mar 2020 16:17:12 +0200 Subject: [PATCH 10/34] Update Main.java --- src/Main.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Main.java b/src/Main.java index 9b8c2b0..27a3e80 100644 --- a/src/Main.java +++ b/src/Main.java @@ -4,6 +4,7 @@ public class Main { private static ISubscriber subscribers [] = { new SimpleSubscriber(), new ReallySimpleSubscriber(), + new SphereCircumference(), }; public static void main(String[] args) { Topic mathTopic = new Topic(); From f9d536d3d24daf88694415fdf885bc2e9d8d6ed5 Mon Sep 17 00:00:00 2001 From: 3bdallh Date: Sun, 1 Mar 2020 17:12:53 +0200 Subject: [PATCH 11/34] changing in class lucasSeries 20170158 --- src/LucasSeries.java | 39 ++++++++------------------------------- 1 file changed, 8 insertions(+), 31 deletions(-) diff --git a/src/LucasSeries.java b/src/LucasSeries.java index bb83e69..1a968cf 100644 --- a/src/LucasSeries.java +++ b/src/LucasSeries.java @@ -1,40 +1,17 @@ - -package main; public class LucasSeries implements ISubscriber { + public static int lucas_series(int number) { + if (number == 0) + return 2; + if (number == 1) + return 1; + return lucas_series(number - 1) + lucas_series(number - 2); + } @Override public void notifySubscriber(String input) { int Lenght = Integer.parseInt(input); System.out.println("Hello, I am really a simple Lucas series and I am notified with " + input); - int []Series_numbers = new int[Lenght]; - switch (Lenght) { - case 1: - System.out.println("The Lucas Series is: 2"); - break; - case 2: - System.out.println("The Lucas Series is: 2,1"); - break; - default: - int F_Number = 2; - int S_Number = 1; - int Temp = 0; - Series_numbers[0] = 2; - Series_numbers[1] = 1; - for(int i = 2; i < Lenght; i++){ - Temp = F_Number + S_Number; - Series_numbers[i] = Temp; - F_Number = S_Number; - S_Number = Temp; - } - System.out.print("The Lucas Series is: "); - for(int i = 0; i < Lenght; i++){ - if (i < Lenght - 1) - System.out.print(Series_numbers[i]+","); - else - System.out.println(Series_numbers[i]); - } - break; - } + System.out.println("LUcas Number Is : "+lucas_series(Lenght)); } } From c01eb453b13ec646560f9cba1569ddf2bfefacde Mon Sep 17 00:00:00 2001 From: 3bdallh Date: Sun, 1 Mar 2020 17:22:27 +0200 Subject: [PATCH 12/34] second change in main functon 20170158 --- src/Main.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Main.java b/src/Main.java index b58b256..4ef62d9 100644 --- a/src/Main.java +++ b/src/Main.java @@ -2,15 +2,10 @@ public class Main { private static ISubscriber subscribers [] = { -<<<<<<< HEAD - new LucasSeries(), - -======= new SimpleSubscriber(), new ReallySimpleSubscriber(), new SphereCircumference(), new LucasSeries(), ->>>>>>> 29c1c0d4a9cd9b46a45857d712c860640f7aa7fd }; public static void main(String[] args) { Topic mathTopic = new Topic(); From 053e4b8d3e4222eeef9bdd14ed7535c9b5911c28 Mon Sep 17 00:00:00 2001 From: fatmaashraframadan <36447147+fatmaashraframadan@users.noreply.github.com> Date: Sun, 1 Mar 2020 19:15:26 +0200 Subject: [PATCH 13/34] 20170165 - Sphere Volume --- src/Main.java | 3 ++- src/SphereCircumference.java | 2 +- src/SphereVolum.java | 10 ++++++++++ 3 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 src/SphereVolum.java diff --git a/src/Main.java b/src/Main.java index 4ef62d9..4a7f82f 100644 --- a/src/Main.java +++ b/src/Main.java @@ -4,8 +4,9 @@ public class Main { private static ISubscriber subscribers [] = { new SimpleSubscriber(), new ReallySimpleSubscriber(), - new SphereCircumference(), + new SphereCircumference(), new LucasSeries(), + new SphereVolum() }; public static void main(String[] args) { Topic mathTopic = new Topic(); diff --git a/src/SphereCircumference.java b/src/SphereCircumference.java index a214a9a..8304e05 100644 --- a/src/SphereCircumference.java +++ b/src/SphereCircumference.java @@ -4,5 +4,5 @@ public class SphereCircumference implements ISubscriber { public void notifySubscriber(String input) { double R = Double.parseDouble(input); System.out.println("Sphere Circumference is = " + (2*3.14*R)); - +} } diff --git a/src/SphereVolum.java b/src/SphereVolum.java new file mode 100644 index 0000000..fef763c --- /dev/null +++ b/src/SphereVolum.java @@ -0,0 +1,10 @@ +public class SphereVolum implements ISubscriber { + + @Override + public void notifySubscriber(String input) { + // TODO Auto-generated method stub + double volume =((double)4/3) * Math.PI * Math.pow((Double.parseDouble(input)),3) ; + System.out.println("Sphere Volume is : " + volume); + } + +} From dbf748513e7ac9f1ffb4c8fbd291d4adc16cc27b Mon Sep 17 00:00:00 2001 From: 3olaa <36084394+3olaa@users.noreply.github.com> Date: Sun, 1 Mar 2020 19:33:14 +0200 Subject: [PATCH 14/34] Delete SphereVolum.java --- src/SphereVolum.java | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 src/SphereVolum.java diff --git a/src/SphereVolum.java b/src/SphereVolum.java deleted file mode 100644 index fef763c..0000000 --- a/src/SphereVolum.java +++ /dev/null @@ -1,10 +0,0 @@ -public class SphereVolum implements ISubscriber { - - @Override - public void notifySubscriber(String input) { - // TODO Auto-generated method stub - double volume =((double)4/3) * Math.PI * Math.pow((Double.parseDouble(input)),3) ; - System.out.println("Sphere Volume is : " + volume); - } - -} From 2aab8e4633d14ba17897a884231bfc9331829043 Mon Sep 17 00:00:00 2001 From: 3olaa <36084394+3olaa@users.noreply.github.com> Date: Sun, 1 Mar 2020 19:53:53 +0200 Subject: [PATCH 15/34] Delete Main.java --- src/Main.java | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 src/Main.java diff --git a/src/Main.java b/src/Main.java deleted file mode 100644 index 4a7f82f..0000000 --- a/src/Main.java +++ /dev/null @@ -1,20 +0,0 @@ -import java.util.Scanner; - -public class Main { - private static ISubscriber subscribers [] = { - new SimpleSubscriber(), - new ReallySimpleSubscriber(), - new SphereCircumference(), - new LucasSeries(), - new SphereVolum() - }; - public static void main(String[] args) { - Topic mathTopic = new Topic(); - for (ISubscriber sub : subscribers) { - mathTopic.addSubscriber(sub); - } - Scanner sc = new Scanner(System.in); - String input = sc.next(); - mathTopic.dispatchEvent(input); - } -} From 582e9299842b84725fc2010764bad8817dc78e23 Mon Sep 17 00:00:00 2001 From: Omar444Ali <58803757+Omar444Ali@users.noreply.github.com> Date: Sun, 1 Mar 2020 10:11:55 -0800 Subject: [PATCH 16/34] 20170180 class circle circumference is done and it is tested. --- src/CircleCircumference.java | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/CircleCircumference.java diff --git a/src/CircleCircumference.java b/src/CircleCircumference.java new file mode 100644 index 0000000..e9fb7f0 --- /dev/null +++ b/src/CircleCircumference.java @@ -0,0 +1,11 @@ + +public class CircleCircumference implements ISubscriber { + + @Override + public void notifySubscriber(String input) { + // TODO Auto-generated method stub + double r=Double.parseDouble(input); + System.out.println("circle circumference = "+(2*3.14*r)); + } + +} From 37bf7970543bf2c589afc98d18d53b41bed33379 Mon Sep 17 00:00:00 2001 From: fatmaashraframadan <36447147+fatmaashraframadan@users.noreply.github.com> Date: Sun, 1 Mar 2020 21:10:29 +0200 Subject: [PATCH 17/34] 20170165 - Sphere Volume --- src/Main.java | 34 +++++++++++++++++----------------- src/SphereVolume.java | 10 ++++++++++ 2 files changed, 27 insertions(+), 17 deletions(-) create mode 100644 src/SphereVolume.java diff --git a/src/Main.java b/src/Main.java index 4a7f82f..a0291aa 100644 --- a/src/Main.java +++ b/src/Main.java @@ -1,20 +1,20 @@ import java.util.Scanner; public class Main { - private static ISubscriber subscribers [] = { - new SimpleSubscriber(), - new ReallySimpleSubscriber(), - new SphereCircumference(), - new LucasSeries(), - new SphereVolum() - }; - public static void main(String[] args) { - Topic mathTopic = new Topic(); - for (ISubscriber sub : subscribers) { - mathTopic.addSubscriber(sub); - } - Scanner sc = new Scanner(System.in); - String input = sc.next(); - mathTopic.dispatchEvent(input); - } -} + private static ISubscriber subscribers [] = { + new SimpleSubscriber(), + new ReallySimpleSubscriber(), + new SphereCircumference(), + new LucasSeries(), + new SphereVolume() + }; + public static void main(String[] args) { + Topic mathTopic = new Topic(); + for (ISubscriber sub : subscribers) { + mathTopic.addSubscriber(sub); + } + Scanner sc = new Scanner(System.in); + String input = sc.next(); + mathTopic.dispatchEvent(input); + } +} \ No newline at end of file diff --git a/src/SphereVolume.java b/src/SphereVolume.java new file mode 100644 index 0000000..8734980 --- /dev/null +++ b/src/SphereVolume.java @@ -0,0 +1,10 @@ + +public class SphereVolume implements ISubscriber { + @Override + public void notifySubscriber(String input) { + // TODO Auto-generated method stub + double volume =((double)4/3) * Math.PI * Math.pow(Double.parseDouble(input),3) ; + + System.out.println("Sphere Volume : " + volume); + } +} From 26849b25435b36f6061d0d58a47f6e76c4d05734 Mon Sep 17 00:00:00 2001 From: 3olaa <36084394+3olaa@users.noreply.github.com> Date: Sun, 1 Mar 2020 21:17:33 +0200 Subject: [PATCH 18/34] Delete SphereCircumference.java --- src/SphereCircumference.java | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 src/SphereCircumference.java diff --git a/src/SphereCircumference.java b/src/SphereCircumference.java deleted file mode 100644 index 8304e05..0000000 --- a/src/SphereCircumference.java +++ /dev/null @@ -1,8 +0,0 @@ - -public class SphereCircumference implements ISubscriber { - - public void notifySubscriber(String input) { - double R = Double.parseDouble(input); - System.out.println("Sphere Circumference is = " + (2*3.14*R)); -} -} From b386818db8065dcd362a4922525a788e3de4d2af Mon Sep 17 00:00:00 2001 From: 3olaa <36084394+3olaa@users.noreply.github.com> Date: Sun, 1 Mar 2020 22:14:01 +0200 Subject: [PATCH 19/34] 20170165 - sphere volume --- .idea/misc.xml | 6 ++++++ .idea/modules.xml | 8 +++++++ .idea/vcs.xml | 6 ++++++ .idea/workspace.xml | 42 +++++++++++++++++++++++++++++++++++++ git_assignment_initial4.iml | 11 ++++++++++ 5 files changed, 73 insertions(+) create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml create mode 100644 git_assignment_initial4.iml diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..735e154 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..3cdded6 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..be87b02 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + 1583093546174 + + + + \ No newline at end of file diff --git a/git_assignment_initial4.iml b/git_assignment_initial4.iml new file mode 100644 index 0000000..c90834f --- /dev/null +++ b/git_assignment_initial4.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file From c401b37e34ac027f6179122420073e0c2d391da7 Mon Sep 17 00:00:00 2001 From: 3olaa <36084394+3olaa@users.noreply.github.com> Date: Sun, 1 Mar 2020 22:27:06 +0200 Subject: [PATCH 20/34] 20170165 - sphere volume --- .idea/workspace.xml | 36 +++++++++++++++++++++++++++++++++++- src/Main.java | 2 +- 2 files changed, 36 insertions(+), 2 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index be87b02..991df23 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,7 +1,10 @@ - + + + + + + @@ -37,6 +45,32 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Main.java b/src/Main.java index a0291aa..95c3842 100644 --- a/src/Main.java +++ b/src/Main.java @@ -4,7 +4,7 @@ public class Main { private static ISubscriber subscribers [] = { new SimpleSubscriber(), new ReallySimpleSubscriber(), - new SphereCircumference(), + //new SphereCircumference(), new LucasSeries(), new SphereVolume() }; From cf5fb248f61c78dd46f114753c8eab030851695c Mon Sep 17 00:00:00 2001 From: 3olaa <36084394+3olaa@users.noreply.github.com> Date: Sun, 1 Mar 2020 22:29:13 +0200 Subject: [PATCH 21/34] Update Main.java --- src/Main.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Main.java b/src/Main.java index a0291aa..bfbdb1a 100644 --- a/src/Main.java +++ b/src/Main.java @@ -4,7 +4,7 @@ public class Main { private static ISubscriber subscribers [] = { new SimpleSubscriber(), new ReallySimpleSubscriber(), - new SphereCircumference(), + //new SphereCircumference(), new LucasSeries(), new SphereVolume() }; @@ -17,4 +17,4 @@ public static void main(String[] args) { String input = sc.next(); mathTopic.dispatchEvent(input); } -} \ No newline at end of file +} From 105169c91dd30c7b69224cedd41581484753caaf Mon Sep 17 00:00:00 2001 From: 3olaa <36084394+3olaa@users.noreply.github.com> Date: Sun, 1 Mar 2020 22:34:18 +0200 Subject: [PATCH 22/34] 20170165 - sphere volume --- .idea/workspace.xml | 49 +++++---------------------------------------- 1 file changed, 5 insertions(+), 44 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 991df23..f074faf 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,10 +1,7 @@ - - - - + - - - - + @@ -39,38 +26,12 @@ - - 1583093546174 + + 1583094812388 - - 1583093641809 - - - - - - - - - - - - - - - - - - - \ No newline at end of file From 78f4b93283ec72b49f2fad182baa9b8965114b94 Mon Sep 17 00:00:00 2001 From: 3olaa <36084394+3olaa@users.noreply.github.com> Date: Sun, 1 Mar 2020 22:46:17 +0200 Subject: [PATCH 23/34] 20170165 - sphere volume --- .idea/workspace.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index f074faf..c220118 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,7 +1,7 @@ - +